summaryrefslogtreecommitdiff
path: root/app/[lng]/spreadTest
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-06-24 01:44:03 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-06-24 01:44:03 +0000
commit4e63d8427d26d0d1b366ddc53650e15f3481fc75 (patch)
treeddfb69a92db56498ea591eed0f14ed2ce823431c /app/[lng]/spreadTest
parent127185717263ea3162bd192c83b4c7efe0d96e50 (diff)
(대표님/최겸) 20250624 작업사항 10시43분
Diffstat (limited to 'app/[lng]/spreadTest')
-rw-r--r--app/[lng]/spreadTest/page.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/spreadTest/page.tsx b/app/[lng]/spreadTest/page.tsx
new file mode 100644
index 00000000..2e10eeb8
--- /dev/null
+++ b/app/[lng]/spreadTest/page.tsx
@@ -0,0 +1,17 @@
+'use client'
+
+
+import dynamic from "next/dynamic";
+
+const SpreadSheet = dynamic(
+ () => {
+ return import("@/components/spread-js/testSheet");
+ },
+ { ssr: false }
+);
+
+export default function SpreadTestPage() {
+ return (
+ <div className='w-[100vw] h-[100vh]'><SpreadSheet /></div>
+ )
+}